home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2005 March / Macworld CD March 2005 - Marathon Trilogy.iso / Shareware World / User Interface / RocketLauncher.sit / RocketLauncher / RocketLauncher.app / Contents / Resources / AppTableDS.h < prev    next >
Encoding:
Text File  |  2005-01-09  |  468 b   |  22 lines

  1. //
  2. //  AppTableDS.h
  3. //  RocketLauncher
  4. //
  5. //  Created by Oleg Kibirev on 1/2/05.
  6. //  Copyright 2005 My Stuff. All rights reserved.
  7. //
  8.  
  9. #import <Cocoa/Cocoa.h>
  10. #import "AppInfo.h"
  11.  
  12. @interface AppTableDS : NSObject {
  13.     NSArray *appList;
  14. }
  15.  
  16. -(void)setAppList: (NSArray *)appList;
  17. -(void)dealloc;
  18. -(int)numberOfRowsInTableView: (NSTableView *)table;
  19. - (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex;
  20.  
  21. @end
  22.